Skip to content

chore(deps): Bump the dependencies group across 1 directory with 4 updates - #105

Merged
GoodbyePlanet merged 1 commit into
mainfrom
dependabot/uv/dependencies-4b05cf3475
Aug 11, 2026
Merged

chore(deps): Bump the dependencies group across 1 directory with 4 updates#105
GoodbyePlanet merged 1 commit into
mainfrom
dependabot/uv/dependencies-4b05cf3475

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 11, 2026

Copy link
Copy Markdown
Contributor

Bumps the dependencies group with 4 updates in the / directory: qdrant-client, tree-sitter-scala, tree-sitter-language-pack and pydantic-settings.

Updates qdrant-client from 1.18.0 to 1.19.0

Release notes

Sourced from qdrant-client's releases.

v1.19.0

Change Log

Features 🌊

Fixes 🧑‍🔧

Deprecations ⏲️

  • #1210 - add and query methods have been removed, use FastEmbed with upsert/query_points instead by @​joein
  • #1311 - max_resident_memory_percent has been deprecated by @​joein
  • #1298 - search, search_batch, search_groups, recommend, recommend_batch, recommend_groups and on_disk_payload have been deprecated in favour of query_points, query_batch_points, query_points_groups and the new payload config by @​joein

Misc 🧰

Thanks to everyone who contributed to the current release! @​nazsats @​winklemad @​ErenAta16 @​MushiSenpai @​charles-dyfis-net @​aloktripathi1 @​Goodnight77 @​hassanzafarr @​estebany-qd @​joein

Commits
  • 425840b bump version to v1.19.0
  • 34dbb37 fix: fix nested payload local mode (#1312)
  • da58e7d deprecate: remove max_disk_usage_percent, deprecate max_resident_memory_perce...
  • efc4619 fix: values_count bounds must be satisfied by a single value in local mode (#...
  • 589aece new: 1.19.0 updates (#1298)
  • 24bd6bf fix: add limit > 0 rules in local mode (#1281)
  • 715b48b Preserve proto3 field presence for falsy values in REST/gRPC conversion (#1260)
  • 5a0e0d0 fix: do not drop falsy shard keys in convert_points_update_operation (#1279)
  • 2257c55 fix: fix embed paths (#1278)
  • f28634c Warn that search_params is ignored in local mode instead of silently dropping...
  • Additional commits viewable in compare view

Updates tree-sitter-scala from 0.26.0 to 0.26.2

Release notes

Sourced from tree-sitter-scala's releases.

v0.26.2

NOTE: Download tree-sitter-scala.tar.gz for the complete source code.

🐛 bug fixes

🚀 updates

... (truncated)

Commits
  • b931fcc Merge pull request #646 from eed3si9n/wip/bump-version
  • 5d942ea 0.26.2
  • 7b77c7f Merge pull request #645 from tree-sitter/generation
  • 33d361f chore: generate and sync from 001160cff69a43cf9f818a03d80a996b28c5535b
  • 001160c Merge pull request #644 from tree-sitter/pattern-type-arguments
  • f427873 fix: take the type arguments of an extractor pattern
  • 66acbe2 Merge pull request #643 from tree-sitter/generation
  • c733a9c chore: generate and sync from 71b02a68c57bd0e52535962f9167de8462b3c60b
  • 71b02a6 fix: skip strings and characters when the comma reads its line
  • da0bae5 Merge pull request #642 from tree-sitter/indent-in-parens
  • Additional commits viewable in compare view

Updates tree-sitter-language-pack from 1.13.3 to 1.14.3

Release notes

Sourced from tree-sitter-language-pack's releases.

v1.14.3

Fixed

  • Windows parser binaries build. The UTF8PROC_STATIC fix in 1.14.2 covered the two static-link paths but not the third one, which builds each grammar's shared library from a raw compiler invocation and compiles utf8proc.c straight into it. MSVC therefore still rejected all 183 scanner grammars with error C2491, and the 1.14.2 release produced no windows-x86_64 or windows-aarch64 parser binaries (#174).

Added

  • CI builds the parser binaries on windows-x86_64 and windows-aarch64 on every push, mirroring the publish job. Windows previously ran on no CI runner, so the dynamic-link build was first attempted at release time; the build log is also written to a file and uploaded, because the failing step exceeded GitHub's per-step log archive cap and left no recoverable diagnostic.
  • The validate job installs the Go, Ruby, Dart and Elixir toolchains, so poly's whole-project lint phase — golangci-lint, rubocop, steep, dart-analyze and credo — runs in CI rather than only in the git hooks.

v1.14.2

Fixed

  • Windows artifacts build again. utf8proc.c is compiled into a static archive, but UTF8PROC_STATIC was never defined, so on MSVC utf8proc.h declared every utf8proc_* symbol __declspec(dllimport) and the same translation unit then defined it — error C2491. Every Windows job in the 1.14.1 release (parser binaries, C FFI, CLI, C# native) failed, which is why no windows-x86_64 entry ever reached the pre-built parser manifest (#174).
  • C++ grammar scanners build under musl. The deterministic wide-ctype shim redirects the libc classifiers through function-like macros. Preprocessing is token-based, so a scanner calling std::iswspace(c) expanded to a std::ts_pack_iswspace that does not exist, and heavy libstdc++ headers re-declaring those classifiers after the macros were in scope failed to compile on musl. The redirected names are now visible in namespace std, and norg — whose scanner pulls in <cwctype>, <locale> and <regex> — is excluded from the shim entirely, so it falls back to libc consistently. This unblocks the all-grammar Docker image and the Docker publish.
  • The WASM build no longer emits an unresolved env import. Most tree-sitter scanners include <wchar.h> themselves, and wasi-libc's copy unconditionally redefines iswdigit and friends as trampoline macros, silently clobbering the shim's redirects and leaving a reference to a symbol that does not exist on wasm32. It surfaced as Cannot find module 'env' from the wasm-bindgen glue. The shim now burns that include guard up front on __wasi__.
  • PHP e2e autoloads the relocated sources. The generated composer.json still pointed at the emptied packages/php/src, so every PHP test failed with a missing-class error. It now resolves to crates/ts-pack-core-php.
  • Restored formatting of a generated Go source file and docs-site/pnpm-workspace.yaml, and scoped poly lint to skip whole-project linters whose toolchains CI does not install.

#174: xberg-io/tree-sitter-language-pack#174

v1.14.1

Fixed

... (truncated)

Changelog

Sourced from tree-sitter-language-pack's changelog.

[1.14.3] - 2026-08-05

Fixed

  • Windows parser binaries build. The UTF8PROC_STATIC fix in 1.14.2 covered the two static-link paths but not the third one, which builds each grammar's shared library from a raw compiler invocation and compiles utf8proc.c straight into it. MSVC therefore still rejected all 183 scanner grammars with error C2491, and the 1.14.2 release produced no windows-x86_64 or windows-aarch64 parser binaries (#174).

Added

  • CI builds the parser binaries on windows-x86_64 and windows-aarch64 on every push, mirroring the publish job. Windows previously ran on no CI runner, so the dynamic-link build was first attempted at release time; the build log is also written to a file and uploaded, because the failing step exceeded GitHub's per-step log archive cap and left no recoverable diagnostic.
  • The validate job installs the Go, Ruby, Dart and Elixir toolchains, so poly's whole-project lint phase — golangci-lint, rubocop, steep, dart-analyze and credo — runs in CI rather than only in the git hooks.

[1.14.2] - 2026-08-05

Fixed

  • Windows artifacts build again. utf8proc.c is compiled into a static archive, but UTF8PROC_STATIC was never defined, so on MSVC utf8proc.h declared every utf8proc_* symbol __declspec(dllimport) and the same translation unit then defined it — error C2491. Every Windows job in the 1.14.1 release (parser binaries, C FFI, CLI, C# native) failed, which is why no windows-x86_64 entry ever reached the pre-built parser manifest (#174).
  • C++ grammar scanners build under musl. The deterministic wide-ctype shim redirects the libc classifiers through function-like macros. Preprocessing is token-based, so a scanner calling std::iswspace(c) expanded to a std::ts_pack_iswspace that does not exist, and heavy libstdc++ headers re-declaring those classifiers after the macros were in scope failed to compile on musl. The redirected names are now visible in namespace std, and norg — whose scanner pulls in <cwctype>, <locale> and <regex> — is excluded from the shim entirely, so it falls back to libc consistently. This unblocks the all-grammar Docker image and the Docker publish.
  • The WASM build no longer emits an unresolved env import. Most tree-sitter scanners include <wchar.h> themselves, and wasi-libc's copy unconditionally redefines iswdigit and friends as trampoline macros, silently clobbering the shim's redirects and leaving a reference to a symbol that does not exist on wasm32. It surfaced as Cannot find module 'env' from the wasm-bindgen glue. The shim now burns that include guard up front on __wasi__.
  • PHP e2e autoloads the relocated sources. The generated composer.json still pointed at the emptied packages/php/src, so every PHP test failed with a missing-class error. It now resolves to crates/ts-pack-core-php.
  • Restored formatting of a generated Go source file and docs-site/pnpm-workspace.yaml, and scoped poly lint to skip whole-project linters whose toolchains CI does not install.

#174: xberg-io/tree-sitter-language-pack#174

[1.14.1] - 2026-08-04

... (truncated)

Commits
  • df3bcc3 chore(swift): update Package.swift with checksum for v1.14.3
  • 24efeb3 chore(release): 1.14.3
  • 40eb15e ci: run poly's whole-project lint phase
  • e368ce7 fix(build): define UTF8PROC_STATIC for the dynamic grammar build
  • 7b51880 ci: build parser binaries on Windows before publish
  • 4d84e56 chore: drop dependabot version-update config
  • 2b97897 chore(release): 1.14.2
  • 680a887 fix(ffi): exclude norg from the ctype shim to unblock musl C++ build
  • 616d3ec fix(ffi): stop wasi wchar.h from clobbering ctype-shim redirects
  • 8ba0148 chore: regenerate on alef 0.52.0; fix php e2e autoload and lint paths
  • Additional commits viewable in compare view

Updates pydantic-settings from 2.14.2 to 2.15.0

Release notes

Sourced from pydantic-settings's releases.

v2.15.0

Highlights

Behavior changes

  • case_sensitive now applies to init kwargs and config-file sources (#900). InitSettingsSource and the JSON/TOML/YAML config sources previously ignored case_sensitive. Since it defaults to False, case-insensitive matching is now the default for these sources — e.g. Settings(TeSt=...) now populates a test field where it previously did not. Nested keys are still matched case-sensitively.
  • Fields with unresolved forward references now emit a warning (#901). Settings sources can silently fail to resolve such fields; they now raise IncompleteFieldDefinitionWarning telling you to call model_rebuild(). If you have filterwarnings = error configured, this may surface as a new failure.
  • Non-JSON env values for strict fields now raise ValidationError (#926) instead of a less specific error.

New features

  • Show environment variable names in CLI help via cli_show_env_vars=True (#860), so generated --help output doubles as configuration documentation.
  • PYDANTIC_SETTINGS_DEBUG for debugging settings resolution (#906, #913). Set it to a truthy value with DEBUG logging enabled to see each source's contribution in priority order, which source won for each value, and which env_file/secret files were probed, loaded, or skipped — the long-standing "why isn't my .env being picked up?" question.
  • toml_table_header for regular TOML files (#882, #886, #887), letting you root settings at a nested table in any TOML file, not just pyproject.toml.
  • Traversable support for JSON/TOML/YAML file sources (#902), so you can load config packaged inside a distribution — including files inside a zip or wheel — via importlib.resources.files(...) without casting to Path.
  • GCP: project_id can come from an earlier settings source (#878), rather than only from the constructor or GOOGLE_CLOUD_PROJECT.

Bug fixes

  • Fix env vars not loading on Windows with case_sensitive=True (#894). Windows upper-cases os.environ keys, so fields raised Field required instead of picking up their values.
  • Read secret files as UTF-8 instead of the platform locale encoding (#917). On Windows code pages such as cp1252 this silently corrupted non-ASCII secrets.
  • Fix AliasPath on nested model fields not JSON-decoding env values (#898).
  • Fix case-insensitive matching for optional nested models (#905).
  • Fix dotenv extras being wrongly claimed by a complex field sharing a name prefix (#912) — e.g. dbx_token being swallowed by a db: dict field.
  • Fix nested_model_default_partial_update=True corrupting discriminated unions (#876).
  • Fix Secret subclasses crashing when loaded from the environment (#920).
  • Fix enum names not parsing through nested annotations such as Optional[Annotated[MyEnum, ...]] with env_parse_enums=True (#910).
  • An empty yaml_config_section now falls back to defaults instead of raising AttributeError: 'NoneType' object has no attribute 'keys' (#914).
  • NestedSecretsSettingsSource no longer follows symlinks pointing outside secrets_dir (#889).
  • GCP: skip the list_secrets call when case_sensitive=True (#862), lowering the required IAM permissions to just roles/secretmanager.secretAccessor.
  • AWS: types-boto3[secretsmanager] is no longer required at runtime (#880).

Documentation

  • Document JSON parsing of complex env values, plus a comma-separated-values recipe (#919).
  • Recommend an async settings loading pattern (#908).
  • Clarify behavior when an unprefixed value is present in a dotenv file (#895).
  • Clarify environment variable helper descriptions (#867) and fix assorted typos (#904).

What's Changed

... (truncated)

Commits
  • f725ca1 Prepare release 2.15.0 (#930)
  • 28f35c2 Bump the python-packages group with 4 updates (#929)
  • 9056db0 test: move function-local imports to the top of test modules (#927)
  • f077e3a fix: raise ValidationError for non-JSON env values on strict fields (#926)
  • ae25d70 fix: treat Secret subclasses as non-complex fields (#716) (#920)
  • 798dcea Bump the python-packages group with 4 updates (#924)
  • a190041 Bump the github-actions group with 4 updates (#925)
  • 5d93332 Bump the python-packages group with 4 updates (#921)
  • d2fdeda fix: read secret files as UTF-8 instead of the locale encoding (#917)
  • 2256a4e Bump the python-packages group with 3 updates (#915)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…dates

Bumps the dependencies group with 4 updates in the / directory: [qdrant-client](https://github.com/qdrant/qdrant-client), [tree-sitter-scala](https://github.com/tree-sitter/tree-sitter-scala), [tree-sitter-language-pack](https://github.com/xberg-io/tree-sitter-language-pack) and [pydantic-settings](https://github.com/pydantic/pydantic-settings).


Updates `qdrant-client` from 1.18.0 to 1.19.0
- [Release notes](https://github.com/qdrant/qdrant-client/releases)
- [Commits](qdrant/qdrant-client@v1.18.0...v1.19.0)

Updates `tree-sitter-scala` from 0.26.0 to 0.26.2
- [Release notes](https://github.com/tree-sitter/tree-sitter-scala/releases)
- [Commits](tree-sitter/tree-sitter-scala@v0.26.0...v0.26.2)

Updates `tree-sitter-language-pack` from 1.13.3 to 1.14.3
- [Release notes](https://github.com/xberg-io/tree-sitter-language-pack/releases)
- [Changelog](https://github.com/xberg-io/tree-sitter-language-pack/blob/main/CHANGELOG.md)
- [Commits](xberg-io/tree-sitter-language-pack@v1.13.3...v1.14.3)

Updates `pydantic-settings` from 2.14.2 to 2.15.0
- [Release notes](https://github.com/pydantic/pydantic-settings/releases)
- [Commits](pydantic/pydantic-settings@v2.14.2...v2.15.0)

---
updated-dependencies:
- dependency-name: qdrant-client
  dependency-version: 1.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tree-sitter-scala
  dependency-version: 0.26.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tree-sitter-language-pack
  dependency-version: 1.14.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pydantic-settings
  dependency-version: 2.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Aug 11, 2026
@GoodbyePlanet
GoodbyePlanet merged commit fc466c3 into main Aug 11, 2026
2 checks passed
@GoodbyePlanet
GoodbyePlanet deleted the dependabot/uv/dependencies-4b05cf3475 branch August 11, 2026 07:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant